home *** CD-ROM | disk | FTP | other *** search
/ The Pier Shareware 9 / The Pier Shareware #9 (Pier Exchange).ISO / 039 / bdlg32.exe / STATDLG.H < prev    next >
C/C++ Source or Header  |  1993-11-23  |  1KB  |  41 lines

  1. // statdlg.h : header file
  2. //
  3.  
  4. /////////////////////////////////////////////////////////////////////////////
  5. // CStatDlg dialog
  6.  
  7. class CStatDlg : public CDialog
  8. {
  9. // Construction
  10. public:
  11.     CStatDlg(CWnd* pParent = NULL);    // standard constructor
  12.  
  13. // Dialog Data
  14.     //{{AFX_DATA(CStatDlg)
  15.     enum { IDD = IDD_STATIC };
  16.     CStatic    m_staticFrame;    // Used with DDX/DDV to access static frame
  17.     //}}AFX_DATA
  18.  
  19. // Attributes
  20. protected:
  21.    CDC m_dcMem;            // Compatible Memory DC for dialog
  22.    CBitmap m_bmpCircle;    // Bitmap to display
  23.    HBITMAP m_hBmpOld;    // Handle of old bitmap to save
  24.    
  25.    BITMAP m_bmInfo;        // Bitmap Information structure
  26.    CPoint m_pt;            // Position for upper left corner of bitmap
  27.    CSize m_size;        // Size (width and height) of bitmap
  28.  
  29. // Implementation
  30. protected:
  31.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  32.  
  33.     // Generated message map functions
  34.     //{{AFX_MSG(CStatDlg)
  35.     afx_msg void OnDestroy();
  36.     afx_msg void OnPaint();
  37.     virtual BOOL OnInitDialog();
  38.     //}}AFX_MSG
  39.     DECLARE_MESSAGE_MAP()
  40. };
  41.